home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 001-025 / disk_002 / microemacs / makefile < prev    next >
Makefile  |  1992-05-06  |  1KB  |  72 lines

  1. #    Makefile for microemacs.  Works with public domain "make" and "cc"
  2. #    for the amiga.
  3. #
  4.  
  5. CC =        cc
  6. CFLAGS =
  7.  
  8. CFILES1 =    ansi.c basic.c buffer.c display.c file.c fileio.c line.c
  9. CFILES2 =    main.c random.c region.c search.c spawn.c tcap.c termio.c
  10. CFILES3 =    vt52.c window.c word.c
  11. CFILES =    $(CFILES1) $(CFILES2) $(CFILES3)
  12.  
  13. OFILES1 =    ansi.o basic.o buffer.o display.o file.o fileio.o line.o
  14. OFILES2 =    main.o random.o region.o search.o spawn.o tcap.o termio.o
  15. OFILES3 =    vt52.o window.o word.o
  16. OFILES =    $(OFILES1) $(OFILES2) $(OFILES3)
  17.  
  18. emacs :        $(OFILES)
  19.         $(CC) -o emacs $(OFILES)
  20.  
  21. ansi.o :    ansi.c ed.h
  22.         $(CC) -c $(CFLAGS) ansi.c
  23.  
  24. basic.o :    basic.c ed.h
  25.         $(CC) -c $(CFLAGS) basic.c
  26.  
  27. buffer.o :    buffer.c ed.h
  28.         $(CC) -c $(CFLAGS) buffer.c
  29.  
  30. display.o :    display.c ed.h
  31.         $(CC) -c $(CFLAGS) display.c
  32.  
  33. file.o :    file.c ed.h
  34.         $(CC) -c $(CFLAGS) file.c
  35.  
  36. fileio.o :    fileio.c ed.h
  37.         $(CC) -c $(CFLAGS) fileio.c
  38.  
  39. line.o :    line.c ed.h
  40.         $(CC) -c $(CFLAGS) line.c
  41.  
  42. main.o :    main.c ed.h
  43.         $(CC) -c $(CFLAGS) main.c
  44.  
  45. random.o :    random.c ed.h
  46.         $(CC) -c $(CFLAGS) random.c
  47.  
  48. region.o :    region.c ed.h
  49.         $(CC) -c $(CFLAGS) region.c
  50.  
  51. search.o :    search.c ed.h
  52.         $(CC) -c $(CFLAGS) search.c
  53.  
  54. spawn.o :    spawn.c ed.h
  55.         $(CC) -c $(CFLAGS) spawn.c
  56.  
  57. tcap.o :    tcap.c ed.h
  58.         $(CC) -c $(CFLAGS) tcap.c
  59.  
  60. termio.o :    termio.c ed.h
  61.         $(CC) -c $(CFLAGS) termio.c
  62.  
  63. vt52.o :    vt52.c ed.h
  64.         $(CC) -c $(CFLAGS) vt52.c
  65.  
  66. window.o :    window.c ed.h
  67.         $(CC) -c $(CFLAGS) window.c
  68.  
  69. word.o :    word.c ed.h
  70.         $(CC) -c $(CFLAGS) word.c
  71.  
  72.